home *** CD-ROM | disk | FTP | other *** search
/ Pesquisa Dirigida / Pesquisa Dirigida.iso / JOGOS / alloy.swf / scripts / DefineSprite_88 / frame_1 / DoAction.as
Text File  |  2005-01-07  |  975b  |  54 lines

  1. if(!init)
  2. {
  3.    _root.combonum = 0;
  4.    if(_root.punch < 5)
  5.    {
  6.       _root.game.alloy.ani1 = "";
  7.       _root.game.alloy.ani.gotoAndStop(1);
  8.    }
  9.    set("../:chargelevel",1);
  10.    charge = 0;
  11.    init = 1;
  12.    if(!key.isDown(68))
  13.    {
  14.       _root.game.alloy.ani1 = "";
  15.       _root.game.alloy.ani.gotoAndStop(1);
  16.    }
  17. }
  18. if(key.isDown(68) and charge < 70)
  19. {
  20.    _root.charging = 1;
  21.    if(key.isDown(83) and eval("../:chargelevel") >= 2)
  22.    {
  23.       tellTarget("..")
  24.       {
  25.          gotoAndStop("harpoon");
  26.          play();
  27.       }
  28.    }
  29.    charge++;
  30.    if(charge > 10)
  31.    {
  32.       set("../:chargelevel",3);
  33.    }
  34.    else if(charge > 3)
  35.    {
  36.       set("../:chargelevel",2);
  37.       _root.blood = "y";
  38.    }
  39.    _root.punch = 15;
  40.    _root.game.alloy.phold = 0;
  41.    if(charge > 68)
  42.    {
  43.       _root.punch = 0;
  44.       _root.game.alloy.phold = 67;
  45.    }
  46.    "../:stop"();
  47.    _root.combonum = 0;
  48. }
  49. else
  50. {
  51.    "../:play"();
  52.    _root.charging = 0;
  53. }
  54.